home *** CD-ROM | disk | FTP | other *** search
- global gSIXDebug
-
- on SIDebugStart
- openXLib("commport.dll")
- set gSIXDebug to CommPort(mnew, "COM2", 128, 128)
- if objectp(gSIXDebug) then
- gSIXDebug(mSetParity, "None")
- gSIXDebug(mSetStopBits, 1)
- gSIXDebug(mSetDataBits, 8)
- end if
- end
-
- on SIDebugStop
- if objectp(gSIXDebug) then
- gSIXDebug(mdispose)
- end if
- closeXLib("commport.dll")
- end
-
- on SIDebugPut aStr
- if objectp(gSIXDebug) then
- gSIXDebug(mWriteString, RETURN & numToChar(10) & aStr)
- gSIXDebug(mWriteFlush)
- end if
- end
-